/* 含默认样式、全局样式 */
*{
  font-family: "Microsoft YaHei" !important;
}
body{
	min-width: 1000px;
}
.header{
  width: 100%;
}
.header-bg{
  width: 100%;
  height: 380px;
  background: red;
  /* 后续图片通过style设定供后台可配置 */
  background-image: url('../img/header_bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.header-bg .header-slogan{
  width: 820px;
  display: block;
  margin: 0 auto;
  margin-top: 94px;
}
.header-bg .header-logo{
  height: 83px;
  display: block;
  margin: 0 auto;
  margin-top: 39px;
}

.header-nav{
  width: 100%;
  height: 50px;
  background: #1f51B9;
}
.header-nav .first-ul{
  height: 100%;
  width: 1000px;
  margin: 0 auto;
  display: flex;
  position: relative;
}
.header-nav .first-ul > li{
  height: 50px;
  width: 126px;
}
.header-nav .first-ul > li a{
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  transition: all .2s;
}
.header-nav .first-ul > li:hover{
  background: #005ae5;
}
.header-nav .second-ul{
  width: 1000px;
  background: #005ae5;
  box-sizing: border-box;
  display: flex;
  position: absolute;
  left: 0;
  z-index: 9999;
  transform: translateY(1px);
  flex-wrap: wrap;
}
.header-nav .second-ul > li{
  height: 0;
  transition: all .2s;
  overflow: hidden;
  margin: 0 8px;
}
.header-nav .second-ul > li a{
  height: 34px;
  line-height: 34px;
  font-size: 20px;
  color: #fff;
  box-sizing: border-box;
  padding: 0 8px;
  margin-top: 8px;
  border-radius: 4px;
}
.header-nav .second-ul > li a:hover{
  background-color: #fff;
  color: #03101a;
}
.header-nav .first-ul > li:hover .second-ul li{
  height: 50px;
}

.content{
  margin: 0 auto;
  width: 1000px;
  min-height: 1000px;
}

.footer{
  width: 100%;
  height: 180px;
  background-color: #1f51B9;
}
.footer .footer-wrapper{
  height: 100%;
  width: 1000px;
  margin: 0 auto;
  display: flex;
}
.footer .footer-wrapper .imgConac{
  width: 50px;
  height: 60px;
  margin-top: 60px;
  margin-left: 10px;
}
.footer .footer-wrapper .footer-pageinfo{
  height: 100%;
  width: 650px;
  padding: 48px 26px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .footer-wrapper .footer-pageinfo p{
  width: 100%;
  color: #fff !important;
  font-size: 15px;
  text-align: center;
  height: 20px !important;
  line-height: 20px !important;
}
.footer .footer-wrapper .footer-pageinfo p span{
  color: #fff !important;
}
.footer .footer-wrapper .footer-barcode-wrapper{
  margin-top: 33px;
  width: 150px;
  text-align: center;
}
.footer .footer-wrapper .footer-barcode-wrapper .footer-barcode{
  height: 90px;
  width: 90px;
  margin: 0 auto;
  margin-bottom: 10px;
  background: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer .footer-wrapper .footer-barcode-wrapper span{
  color: #fff;
  font-size: 14px;
}

.layui-input-block{
  height: 30px;
  position: relative;
}
.layui-input-block .header-bg-func-2-btn{
  position: absolute;
  width: 50px;
  height: 30px;
  text-align: center;
  border-radius: 15px;
  top: 0;
  right: 0;
  background: #eb2111;
  cursor: pointer;
  transition: all .2s;
}
.layui-input-block .header-bg-func-2-btn:hover{
  background: #e11e11;
}
.layui-input-block .header-bg-func-2-btn:active{
  background: #d81d10;
}
.layui-input-block .header-bg-func-2-btn img{
  user-select: none;
  height: 13px;
  width: 13px;
  transform: translateY(3px);
}